Skip to main content
Version: 1.0.2

Get CVV of a Card

Getting CVV for virtual card issued to the card holder.

Method: POST

{{URL}}/cardv2

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParametersDescription

reference

Optional

String

Unique reference ID of the request

Sample Value: "visadps100013"

product

Mandatory

String

Name of the product associated with the card

Sample Value: "DEFAULT"

program

Mandatory

String

Name of the program to which the card product is mapped

Sample Value: "DEFAULT"

channel

Mandatory

Enum

Processing channel through which the card transaction happens

Valid Values:

PULSE

VISA_DPS

Sample Value: "VISA_DPS"

transactionType

Mandatory

String

Type of operation / transaction

Constant Value: "GET_CVV"

customerId

Mandatory

String

Unique ID of customer who holds the card

Sample Value: "100000000006001"

accountNumber

Mandatory

String

Account number linked to the card

Sample Value: "400320588344662"

cardId

Mandatory

String

Unique ID of the card

Sample Value: "025951734ff74c13a14137e02834fa00"


curl --location --globoff --request GET '{{URL}}/cardv2' \
--header 'Content-Type: application/json' \
--data '{"method":"ledger.CARD.request","id":"1","params":{"payload":{"reference":"visadps100013","product":"DEFAULT","program":"DEFAULT","channel":"VISA_DPS","transactionType":"GET_CVV","customerId":"100000000006001","accountNumber":"400320588344662","cardId":"025951734ff74c13a14137e02834fa00"},"api":{"credential":"{{cred}}","signature":"{{signature}}","apiKey":"{{Api-key}}"}}}'

Body


{
"method": "ledger.CARD.request",
"id": "1",
"params": {
"payload": {
"reference": "visadps100013",
"product": "DEFAULT",
"program": "DEFAULT",
"channel": "VISA_DPS",
"transactionType": "GET_CVV",
"customerId": "100000000006001",
"accountNumber": "400320588344662",
"cardId": "025951734ff74c13a14137e02834fa00"
},
"api": {
"credential": "{{cred}}",
"signature": "{{signature}}",
"apiKey": "{{Api-key}}"
}
}
}

Response: 200

Response Parameters
ParametersDescription

Id

String

Response ID echoed from the request ID

Sample Value: "1"

result

Object

card

Object

cardId

String

Unique ID of the card

Sample Value: "025951734ff74c13a14137e02834fa00"

postedDate

String

Date and time when the details for getting cvv was posted

Sample Value: "2024-11-20T06:56:11.399Z"

updatedDate

String

Date and time when the details for getting cvv was updated

Sample Value: "2024-11-20T06:56:11.399Z"

allowAtm

Boolean

Allowing card for transactions through ATM

Sample Value: false

allowEcommerce

Boolean

Allowing card for e-commerce transactions

Sample Value: false

allowMoto

Boolean

Allowing card for transactions through mobile

Sample Value: false

allowPos

Boolean

Allowing card for point-of-sale (POS) terminal transaction

Sample Value: false

allowTips

Boolean

Allowing card for tips transaction

Sample Value: false

allowPurchase

Boolean

Allowing card for purchase transaction

Sample Value: false

allowRefund

Boolean

Allowing card for refund transaction

Sample Value: false

allowCashback

Boolean

Allowing card for cashback transaction

Sample Value: false

allowWithdraw

Boolean

Allowing card for ATM withdrawal transaction

Sample Value: false

allowAuthAndCompletion

Boolean

Allowing for authorization and completion of transaction that happens through card

Sample Value: false

smart

Boolean

Allowing card for smart transaction

Sample Value: false

checkAvsZip

Boolean

Allowing card to perform AVS checks on the legalRep ZIP code during transaction

Sample Value: false

checkAvsAddr

Boolean

Allowing card to perform AVS checks on the legalRep address during transaction

Sample Value: false

cvv

String

Card Verification Value of the card

Sample Value: "679"

transactionMade

Boolean

Inicates whether any transactions can be made using the card or not

Sample Value: false

isReIssue

Boolean

Inicates whether the card is reissued

Sample Value: false

isReplace

Boolean

Inicates whether the card is replaced

Sample Value: false

api

Object

type

String

Acknowledgement for type of operation requested for

Sample Value: "GET_CVV_ACK"

reference

String

Unique reference for the API response

Sample Value: "REFvisadps100013"

dateCreated

Number

Unix timestamp of the response was created

Sample Value: 1732086388

originalReference

String

Original reference ID taken from the request

Sample Value: "visadps100013"


{
"id": "1",
"result": {
"card": {
"cardId": "025951734ff74c13a14137e02834fa00",
"postedDate": "2024-11-20T06:56:11.399Z",
"updatedDate": "2024-11-20T06:56:11.399Z",
"allowAtm": false,
"allowEcommerce": false,
"allowMoto": false,
"allowPos": false,
"allowTips": false,
"allowPurchase": false,
"allowRefund": false,
"allowCashback": false,
"allowWithdraw": false,
"allowAuthAndCompletion": false,
"smart": false,
"checkAvsZip": false,
"checkAvsAddr": false,
"cvv": "679",
"transactionMade": false,
"isReIssue": false,
"isReplace": false
},
"api": {
"type": "GET_CVV_ACK",
"reference": "REFvisadps100013",
"dateCreated": 1732086388,
"originalReference": "visadps100013"
}
}
}